home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 February
/
PCWorld_2005-02_cd.bin
/
akce
/
MediaMonkey_2_3_826.exe
/
{app}
/
Scripts
/
MediaMonkey init.vbs
< prev
next >
Wrap
Text File
|
2003-07-21
|
1KB
|
51 lines
' MessageBox type constants
const mtWarning = 0
const mtError = 1
const mtInformation = 2
const mtConfirmation = 3
const mtCustom = 4
' MessageBox buttons constants
const mbYes = 0
const mbYesToAll = 1
const mbNo = 2
const mbNoToAll = 3
const mbOK = 4
const mbOkToAll = 5
const mbCancel = 6
const mbAbort = 7
const mbRetry = 8
const mbIgnore = 9
const mbIgnoreToAll = 10
const mbAll = 11
const mbHelp = 12
' MessageBox results
const mrNone = 0
const mrOk = 1
const mrCancel = 2
const mrAbort = 3
const mrRetry = 4
const mrIgnore = 5
const mrYes = 6
const mrNo = 7
const mrAll = 8
const mrNoToAll = 9
const mrYesToAll = 10
const mrOkToAll = 110
const mrIgnoreToAll = 111
' Common Dialog (Open/Save) constants
const cdlOFNOverwritePrompt = &H0002
const cdlOFNHideReadOnly = &H0004
const cdlOFNAllowMultiselect = &H0200
const cdlOFNExtensionDifferent = &H0400
const cdlOFNPathMustExist = &H0800
const cdlOFNFileMustExist = &H1000
const cdlOFNCreatePrompt = &H2000
const cdlOFNNoReadOnlyReturn = &H8000